home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / BORLAND TURBO / TASKVCLD.PAK / VCLDLG.DFM / VCLDLG.txt
Encoding:
Text File  |  1997-05-06  |  3.4 KB  |  187 lines

  1. object Form1: TForm1
  2.   Left = 475
  3.   Top = 442
  4.   BorderIcons = []
  5.   BorderStyle = bsDialog
  6.   Caption = 'Color Dialog'
  7.   ClientHeight = 159
  8.   ClientWidth = 325
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OnCreate = FormCreate
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label_Selection: TLabel
  17.     Left = 256
  18.     Top = 16
  19.     Width = 38
  20.     Height = 38
  21.     AutoSize = False
  22.     Color = clBlack
  23.     ParentColor = False
  24.   end
  25.   object GroupBox1: TGroupBox
  26.     Left = 13
  27.     Top = 8
  28.     Width = 217
  29.     Height = 41
  30.     TabOrder = 0
  31.     object Label1: TLabel
  32.       Left = 6
  33.       Top = 15
  34.       Width = 18
  35.       Height = 18
  36.       Color = clBlack
  37.       ParentColor = False
  38.     end
  39.     object Label2: TLabel
  40.       Left = 31
  41.       Top = 15
  42.       Width = 18
  43.       Height = 18
  44.       Color = clWhite
  45.       ParentColor = False
  46.     end
  47.     object Label3: TLabel
  48.       Left = 57
  49.       Top = 15
  50.       Width = 20
  51.       Height = 18
  52.       AutoSize = False
  53.       Color = clRed
  54.       ParentColor = False
  55.     end
  56.     object Label4: TLabel
  57.       Left = 84
  58.       Top = 15
  59.       Width = 18
  60.       Height = 18
  61.       AutoSize = False
  62.       Color = clLime
  63.       ParentColor = False
  64.     end
  65.     object Label5: TLabel
  66.       Left = 111
  67.       Top = 15
  68.       Width = 18
  69.       Height = 18
  70.       AutoSize = False
  71.       Color = clBlue
  72.       ParentColor = False
  73.     end
  74.     object Label6: TLabel
  75.       Left = 137
  76.       Top = 15
  77.       Width = 18
  78.       Height = 18
  79.       AutoSize = False
  80.       Color = clAqua
  81.       ParentColor = False
  82.     end
  83.     object Label7: TLabel
  84.       Left = 163
  85.       Top = 15
  86.       Width = 18
  87.       Height = 18
  88.       AutoSize = False
  89.       Color = clFuchsia
  90.       ParentColor = False
  91.     end
  92.     object Label8: TLabel
  93.       Left = 191
  94.       Top = 15
  95.       Width = 18
  96.       Height = 18
  97.       AutoSize = False
  98.       Color = clYellow
  99.       ParentColor = False
  100.     end
  101.   end
  102.   object GroupBox2: TGroupBox
  103.     Left = 13
  104.     Top = 60
  105.     Width = 217
  106.     Height = 91
  107.     TabOrder = 1
  108.     object Label9: TLabel
  109.       Left = 2
  110.       Top = 15
  111.       Width = 31
  112.       Height = 18
  113.       Alignment = taRightJustify
  114.       AutoSize = False
  115.       Caption = 'Red'
  116.     end
  117.     object Label10: TLabel
  118.       Left = 2
  119.       Top = 41
  120.       Width = 31
  121.       Height = 13
  122.       Alignment = taRightJustify
  123.       AutoSize = False
  124.       Caption = 'Green'
  125.     end
  126.     object Label11: TLabel
  127.       Left = 2
  128.       Top = 67
  129.       Width = 31
  130.       Height = 13
  131.       Alignment = taRightJustify
  132.       AutoSize = False
  133.       Caption = 'Blue'
  134.     end
  135.     object ScrollBar_Red: TScrollBar
  136.       Left = 40
  137.       Top = 15
  138.       Width = 169
  139.       Height = 17
  140.       LargeChange = 10
  141.       Max = 255
  142.       TabOrder = 0
  143.       OnChange = ScrollBar_Change
  144.     end
  145.     object ScrollBar_Green: TScrollBar
  146.       Left = 40
  147.       Top = 41
  148.       Width = 169
  149.       Height = 17
  150.       LargeChange = 10
  151.       Max = 255
  152.       TabOrder = 1
  153.       OnChange = ScrollBar_Change
  154.     end
  155.     object ScrollBar_Blue: TScrollBar
  156.       Left = 40
  157.       Top = 67
  158.       Width = 169
  159.       Height = 17
  160.       LargeChange = 10
  161.       Max = 255
  162.       TabOrder = 2
  163.       OnChange = ScrollBar_Change
  164.     end
  165.   end
  166.   object ButtonCancel: TButton
  167.     Left = 238
  168.     Top = 108
  169.     Width = 75
  170.     Height = 21
  171.     Cancel = True
  172.     Caption = 'Cancel'
  173.     ModalResult = 2
  174.     TabOrder = 2
  175.   end
  176.   object ButtonOk: TButton
  177.     Left = 238
  178.     Top = 76
  179.     Width = 75
  180.     Height = 21
  181.     Caption = 'OK'
  182.     Default = True
  183.     ModalResult = 1
  184.     TabOrder = 3
  185.   end
  186. end
  187.